.new_nav {
  background: url('../images/nav_bg.jpg') repeat;
  height: 30px;
  width: 100%;
  position: relative;
}

.new_nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
  font-size: 16px;
}

.new_nav ul li a {
  color: #000;
  line-height: 30px;
  width: 142.8px;
  display: inline-block;
  text-align: center;
}

.new_nav ul>li:hover {
  background-color: #0a4e98;
  color: #fff;
}

.new_nav ul>li:hover a {
  color: #fff;
}
.nav_top {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: url('../images/nav_bg001.png') repeat;
  box-shadow:  0px 0px 5px rgba(0, 0, 0, 0.2);
}
.nav_top_con{
  width: 1000px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 15px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.nav_top .nav_top_item {
  border-right: 1px solid #eaeaea;
  box-sizing: border-box;
  padding: 5px 3%;
}
.nav_top .nav_top_item a{
  width: 100%;
  line-height: 24px;
}
.nav_top_item a>h3 {
  font-size: 16px;
  line-height: 22px;
  padding-left: 8px;
  font-weight: bold;
  color: #333;
}

.nav_top .nav_top_item .cla a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #333;
}

.nav_top .nav_top_item>a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.nav_top .nav_top_item .cla {
  margin-left: 13px;
}

.nav_top .nav_top_item .cla a:hover {
  text-decoration: underline;
  color: #073a7c;
}

.nav_top .nav_top_item .cla .more {
  color: #0a4e98;
}

.nav_top .nav_top_item .cla .more:hover {
  text-decoration: underline;

}

.nav_top .nav_top_item .staticblock {
  width: 5px;
  height: 20px;
  border-radius: 2px;
  background: #083a79;
  color:#fff;
}
.nav_child_three {}
.nav_other .nav_top_con{
  display: flex;
  /*text-align: right;*/
  justify-content: flex-end;
}
.nav_top .nav_top_item .moveblock {
  background-image: -webkit-linear-gradient(top, #d33339, #073a7c);
  animation: move 3s linear infinite;
}
@keyframes move {
  0% {
    background-position: 0px 50px;
  }

  100% {}
}